Keys Property

Task Parallel System.Threading

Gets a collection containing the keys in the Dictionary<(Of <(TKey, TValue>)>).

Namespace:  System.Collections.Concurrent
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public ReadOnly Property Keys As ICollection(Of TKey)
C#
public ICollection<TKey> Keys { get; }

Field Value

An ICollection<(Of <(TKey>)>) containing the keys in the Dictionary<(Of <(TKey, TValue>)>).

Implements

IDictionary<(Of <(TKey, TValue>)>)..::.Keys

See Also